home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 25 / AMIGAplus Sonderheft 25 (2000)(Falke)(DE)(Track 1 of 4)[!].iso / Updates / PowerPC / PPCLibEMU_UPD / history next >
Text File  |  2000-05-16  |  14KB  |  282 lines

  1. ppc.library emulation history
  2. =============================
  3.  
  4. (kern): changes are relevant for PowerUp kernel emulation only
  5. (lib): changes are relevant for M68k library only
  6.  
  7.  
  8. - 0.7d / ppc.library 46.25 (22.02.2000)
  9. o Now PPCINFOTAG_CPUPLL should finally be correct. I'm no longer
  10.   calculating anything but I'm just taking the PLL code from HID1,
  11.   like original PowerUp does (thanks to Harry Sintonen for pointing
  12.   this out). The PLL code bug in the GetAttr() kernel function is
  13.   also emulated.
  14.  
  15. - 0.7c / ppc.library 46.24 (11.01.2000)
  16. o (lib) Ok, mea culpa. There *are* PPC boards with LC040 out, so I can't
  17.   use the FPU on the M68k side. Fixed GetAttrs()/PPCINFOTAG_CPUPLL again.
  18. o (lib) PPCGetAttrs() will always return a result, not only when
  19.   ti_Data is 0.
  20.  
  21. - 0.7b / ppc.library 46.23 (07.01.2000)
  22. o PPCAttrs()/PPCGetAttr() PPCINFOTAG_CPUPLL returns the correct pll code
  23.   now and now longer the calculated pll * 1000000 directly.
  24. o Fixed crash when starting ELF objects from Workbench.
  25. o Library needs a working M68k FPU now (no EC040/EC060).
  26.  
  27. - 0.7a / ppc.library 46.22 (13.12.1999)
  28. o Problems with launching asynchronous PPC threads from an asynchronous
  29.   PPC task solved (AmigaAmp).
  30. o Fixed PPCFindTask(), which crashed when a task was not found (Frogger,
  31.   no audio)!
  32.  
  33. - 0.7 / ppc.library 46.21 (12.12.1999)
  34. o Source is included in release. Make all years 4-digit.
  35. o Asynchronous PPC tasks always had an invalid current directory and
  36.   PROGDIR. This was the main reason that for example MAME (and hope-
  37.   fully many others) didn't work. Now the parent PROGDIR will be
  38.   passed to the asynchronous task.
  39. o (kern) PPCAllocVec/AllocMem() return 32-byte aligned memory again.
  40.   Since V15 the AllocVecPPC function from WarpOS does only guarantee
  41.   8-byte alignment, because memory is always from a pool, so there
  42.   are no cache line problems - but maybe PowerUp software could get
  43.   annoyed by this fact.
  44.  
  45. - 0.6g / ppc.library 46.20 (06.12.1999)
  46. o (kern) PPCLoadObject(), PPCLoadObjectTagList(), PPCUnLoadObject() and
  47.   PPCCreateTask() are supported. Generally they will only call the
  48.   appropriate M68k function, but the kernel version of PPCCreateTask()
  49.   has an additional PC argument, which allows to spawn threads from the
  50.   current task.
  51. o (kern) PPCprintf() with some limitations. No float or long long
  52.   support. Strings are limited to 1000 chars.
  53.  
  54. - 0.6f / ppc.library 46.19 (16.05.1999)
  55. o (kern) PPCAllocPooled() calls PPCAllocVecPooled() and PPCFreePooled()
  56.   call PPCFreeVecPooled(), which saves some space.
  57.  
  58. - 0.6e / ppc.library 46.18 (14.05.1999)
  59. o (kern) PowerUp task priority is converted into a WarpOS nice-value,
  60.   by using the simple formula: NICE = -PRI (not nice, but it works ;)
  61. o (kern) PPCSetTaskAttr() PPCTASKINFOTAG_NAME is illegal.
  62. o (lib) New function PPCSetTaskAttrs(). Supported tags:
  63.   PPCTASKINFOTAG_PRIORITY, PPCTASKTAG_EXTUSERDATA, PPCTASKINFOTAG_INPUTHANDLE,
  64.   PPCTASKINFOTAG_OUTPUTHANDLE and PPCTASKINFOTAG_ERRORHANDLE.
  65.  
  66. - 0.6d / ppc.library 46.17 (13.05.1999)
  67. o MEMF_NOCACHEPPC,MEMF_NOCACHEM68K,MEMF_WRITETHROUGHPPC and
  68.   MEMF_WRITETHROUGHM68K are supported for PPCAllocVec(), PPCAllocMem()
  69.   and PPCCreatePool() (M68k and PPC). Ok... not really supported, but
  70.   emulated by using Chip-RAM. :)
  71. o PPCGetAttrs(M68k) and PPCGetAttr(PPC) return 0x57415250 ('WARP') for
  72.   PPCINFOTAG_EMULATION (=0x8001f0ff), which allows a program to distinguish
  73.   the emulation library from the original.
  74. o (lib) PPCCreateTask(): Don't allocate new memory for a second PPC task
  75.   invocation with the same ELF object. Only PROGBITS sections are reloaded
  76.   from disk to ensure data consistency. NOBITS sections are simply cleared.
  77. o (lib) ELF sections are already loaded and relocated on PPCLoadObject().
  78.   This guarantees that PPCGetObjectAttrs() works as expected before
  79.   PPCCreateTask() was called.
  80. o (lib) PPCRead/Write/Byte/Word/Long() flush the data cache on PPC side.
  81.   PPCWriteLongFlush() additionally invalidates the PPC instruction cache.
  82. o (lib) Fix for SAS/C HunkObj-format, which uses the illegal version 0
  83.   in e_ident[EI_VERSION].
  84. o (kern) New functions: PPCReadByte,PPCReadWord,PPCReadLong,PPCWriteByte,
  85.   PPCWriteWord and PPCWriteLong.
  86.  
  87. - 0.6c / ppc.library 46.16 (23.04.1999)
  88. o (lib) Enforcer hit fixed, when library is opened by a program for the
  89.   first time.
  90.  
  91. - 0.6b / ppc.library 46.15 (18.04.1999)
  92. o (lib) Alloc/Free functions call the appropriate PPC-functions now,
  93.   by doing a context-switch. This ensures that the memory functions
  94.   on the PPC- and on the 68k-side behave exactly the same.
  95. o (lib) Support for pooled memory: PPCAllocPooled(),PPCFreePooled(),
  96.   PPCAllocVecPooled(),PPCFreeVecPooled(),PPCCreatePool(),PPCDeletePool().
  97.  
  98. - 0.6a / ppc.library 46.14 (14.04.1999)
  99. o (kern) PPCFindTask() returns PowerUp TaskObject instead WarpOS TaskPPC.
  100. o (kern) PPCSignal() expects PowerUp TaskObject instead WarpOS TaskPPC.
  101.  
  102. - 0.6 / ppc.library 46.13 (11.04.1999)
  103. o This version of the emulation library REQUIRES powerpc.library V15!
  104. o (lib) MPSemaphore protection of library base caused a wrong Lib-OpenCnt,
  105.   which had the effect that the 0.5d library could never be expunged.
  106. o (kern) The optional PPC MsgPort was not deleted on task exit.
  107. o (kern) Pooled memory, as introduced by WarpOS V4, is supported. The
  108.   dummy functions are replaced by real ones: PPCAllocPooled(),
  109.   PPCAllocVecPooled(),PPCCreatePool(), PPCDeletePool(),PPCFreePooled(),
  110.   PPCFreeVecPooled().
  111. o (kern) PPCFindName(), PPCFindNameSync().
  112. o (kern) Semaphore functions: PPCAttemptSemaphore, PPCAttemptSemaphoreByName,
  113.   PPCAttemptSemaphoreShared, PPCCreateSemaphore, PPCDeleteSemaphore,
  114.   PPCObtainSemaphore, PPCObtainSemaphoreByName, PPCObtainSemaphoreShared,
  115.   PPCReleaseSemaphore.
  116. o (kern) Cache support: PPCCacheFlush, PPCCacheFlushAll, PPCCacheInvalid.
  117. o (kern) PPCRawDoFmt().
  118.  
  119. - 0.5d / ppc.library 46.12 (10.04.1999)
  120. o The first try of the PowerUp Message System Emulation seems to be working!
  121.   Currently all messages and message ports are allocated in Chip-RAM and
  122.   the performance is some magnitudes behind the original ppc.library,
  123.   but it ran successfully through all tests (e.g. msg2, msg2old, msg3,
  124.   msg5 and msg7 by Ralph Schmidt - the other two have bugs).
  125.   The code is already prepared to run in Fast-RAM, which I might try
  126.   in a future release.
  127. o (kern) PowerUp Message System supported functions:
  128.   PPCCreatePort(), PPCDeletePort(), PPCObtainPort(), PPCReleasePort(),
  129.   PPCWaitPort(), PPCCreateMessage(), PPCDeleteMessage(), PPCGetMessage(),
  130.   PPCGetMessageAttr(), PPCReplyMessage(), PPCSendMessage().
  131. o (lib) PowerUp Message System supported functions:
  132.   PPCCreatePort(), PPCDeletePort(), PPCObtainPort(), PPCReleasePort(),
  133.   PPCWaitPort(), PPCCreateMessage(), PPCDeleteMessage(), PPCGetMessage(),
  134.   PPCGetMessageAttr(), PPCReplyMessage(), PPCSendMessage().
  135. o (lib) PPCCreateTask():
  136.   PPCTASKTAG_INPUT/OUTPUT/ERRORHANDLE overrule NP_xxx tags. It was the
  137.   other way around before.
  138.   New PPCCreateTask() tags: PPCTASKTAG_STACKSIZE, STARTUP_MSG,
  139.   STARTUP_MSGDATA, STARTUP_MSGLENGTH, STARTUP_MSGID, MSGPORT.
  140. o (lib) PPCCreateTask() supports asynchronous PPC tasks.
  141. o (lib) PPCDeleteTask() - untested.
  142. o (lib) PPCGetTaskAttrs(). New tags: PPCTASKINFOTAG_TASK, VALUEPTR,
  143.   NAME, PRIORITY, STACKSIZE, INPUTHANDLE, OUTPUTHANDLE, ERRORHANDLE,
  144.   ELFOBJECT, STARTUP_MSG, STARTUP_MSGDATA, STARTUPMSG_LENGTH,
  145.   STARTUP_MSGID, STARTUP_MSGPORT, SIGALLOC, SIGWAIT, SIGRECVD,
  146.   WAITFINISHTASK. The hook and PPC-registers are not supported. Most
  147.   tags are untested.
  148. o (kern) Startup code for PPC tasks creates a PPCMsgPort on demand (tag
  149.   PPCTASKTAG_MSGPORT). Cleanup code replies the startup message (tag
  150.   PPCTASKTAG_STARTUP_MSG).
  151. o (kern) PPCGetTaskAttr(). New tags supported: PPCTASKTAG_STARTUP_MSG,
  152.   PPCTASKTAG_STARTUP_MSGDATA, PPCTASKTAG_STARTUP_MSGLENGTH,
  153.   PPCTASKTAG_STARTUP_MSGID and PPCTASKTAG_MSGPORT.
  154. o (lib) PPCCacheInvalidE() and PPCCacheTrashE(). Fixed some bugs from
  155.   the original ppc.library in these functions.
  156. o (lib) When debugging mode for the library is enabled, the names of
  157.   still unimplemented 68k-functions will be displayed.
  158.  
  159. - 0.5c / ppc.library 46.11 (20.03.1999)
  160. o Removed PPCAlert(), PPCPutMessage() and PSYSCALL_xxx(), which